home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / M2011PWA.ZIP / NEWUSER.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1994-04-21  |  935b  |  116 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING002
  20.     String   STRING003
  21.     String   STRING004
  22.     String   STRING005
  23.  
  24. ;------------------------------------------------------------------------------
  25.  
  26.     ShowOn
  27.     STRING002 = PPEPath() + "MATRIX.TMP"
  28.     FOpen 1, STRING002, 0, 0
  29.     FGet 1, STRING004
  30.     FGet 1, STRING003
  31.     FGet 1, STRING005
  32.     FClose 1
  33.     Delete STRING002
  34.     GetUser
  35.     U_Cmnt2 = STRING005
  36.     PutUser
  37.     PrintLn 
  38.     PrintLn "Thanks, @FIRST@, Your Registration Information is Saved!"
  39.     PrintLn 
  40.     More
  41.     If (Left(STRING003, 1) == "%") Then
  42.         DispFile Right(STRING003, Len(STRING003) - 1), 1
  43.         KbdStuff STRING004
  44.         Hangup
  45.     Else
  46.         PrintLn 
  47.         PrintLn STRING003
  48.         PrintLn 
  49.         KbdStuff STRING004
  50.         Hangup
  51.     Endif
  52.     End
  53.     Delete STRING002
  54.  
  55. ;------------------------------------------------------------------------------
  56. ;
  57. ; Usage report (before postprocessing)
  58. ;
  59. ; ■ Statements used :
  60. ;
  61. ;    1       End
  62. ;    1       More
  63. ;    2       Goto 
  64. ;    2       Let 
  65. ;    6       PrintLn 
  66. ;    1       If 
  67. ;    1       DispFile 
  68. ;    1       FOpen 
  69. ;    1       FClose 
  70. ;    3       FGet 
  71. ;    2       Hangup
  72. ;    1       GetUser
  73. ;    1       PutUser
  74. ;    2       Delete 
  75. ;    2       KbdStuff 
  76. ;    1       ShowOn
  77. ;
  78. ;
  79. ; ■ Functions used :
  80. ;
  81. ;    1       +
  82. ;    1       -
  83. ;    1       ==
  84. ;    1       !
  85. ;    1       Len(
  86. ;    1       Left()
  87. ;    1       Right()
  88. ;    1       PPEPath()
  89. ;
  90. ;------------------------------------------------------------------------------
  91. ;
  92. ; Analysis flags : WB
  93. ;
  94. ; W - Write user ■ 5
  95. ;     Program writes a user record. Although this may be normal for a
  96. ;     User Editor, it may also be a way to modify an account level.
  97. ;     ■ Search for : PUTUSER
  98. ;
  99. ; B - Brute hangup ■ 1
  100. ;     Program hangup without notification. This may be a good way to
  101. ;     disconnect a user, but if used randomly, may be very nasty
  102. ;     ■ Search for : HANGUP, DTROFF
  103. ;
  104. ;------------------------------------------------------------------------------
  105. ;
  106. ; Postprocessing report
  107. ;
  108. ;    0       For/Next
  109. ;    0       While/EndWhile
  110. ;    1       If/Then or If/Then/Else
  111. ;    0       Select Case
  112. ;
  113. ;------------------------------------------------------------------------------
  114. ;                 AEGiS Corp - Break the routines, code against the machines!
  115. ;------------------------------------------------------------------------------
  116.